CloseOnLeave Property (MenuBase<T>)
In This Topic
Gets or sets a value that determines whether the menu should close automatically when the mouse leave the items.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(True)>
Public Property CloseOnLeave As System.Boolean
'Usage
Dim instance As MenuBase(Of T)
Dim value As System.Boolean
instance.CloseOnLeave = value
value = instance.CloseOnLeave
[System.ComponentModel.DefaultValue(true)]
public System.bool CloseOnLeave {get; set;}
public read-write property CloseOnLeave: System.Boolean;
System.ComponentModel.DefaultValueAttribute()
public function get,set CloseOnLeave : System.boolean
[System.ComponentModel.DefaultValue(true)]
public: __property System.bool get_CloseOnLeave();
public: __property void set_CloseOnLeave(
System.bool value
);
[System.ComponentModel.DefaultValue(true)]
public:
property System.bool CloseOnLeave {
System.bool get();
void set ( System.bool value);
}
See Also